home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / sedbcodr / sedbcodr.exe / ReadMe.tx_ / ReadMe.tx
Encoding:
Text File  |  1998-05-20  |  4.2 KB  |  135 lines

  1.  
  2.  
  3.     CONTENTS
  4.     -----------------------------------
  5.     1. About SE DB Coder
  6.     2. Legal Stuff
  7.     3. Instructions
  8.     4. Support & Feedback
  9.  
  10.  
  11.     -------------------------------------------------------------
  12.     ABOUT SE DB CODER
  13.     -------------------------------------------------------------
  14.     This program will convert an Access97 .MDB file into a 
  15.     Visual Basic 5 Module (.BAS). The module can then be executed
  16.     to programmatically recreate the *.MDB Access Database.
  17.  
  18.     The Code generated is crude but effective. The program was 
  19.     written out of need rather than desire so it is some what 
  20.     basic but performs the job required.
  21.  
  22.     The Module can be loaded in to a VB5 project and executed or 
  23.     ammended to suit your needs.
  24.  
  25.     -------------------------------------------------------------
  26.     LEGAL STUFF
  27.     -------------------------------------------------------------
  28.     SE DB Coder is Freeware. The user is granted a license to use
  29.     and distribute the software freely providing that the user 
  30.     agrees to the following conditions :-
  31.  
  32.  
  33.         1. NO FEE is charged for the SE DB Coder program. 
  34.         
  35.         2. The code produced by the program can be incorporated
  36.            in applications, changed or ammended as required 
  37.            regardless of any FEE that may or may not be charged 
  38.            providing that the automatic comments generated at the
  39.            top of the module remain in place.
  40.  
  41.         3. This Software is provided 'AS IS' with no warranty
  42.            or gurantee of any kind. The Author accepts no 
  43.            no responsibility or liability either expressed or
  44.            implied for loss or damages of any nature which result 
  45.            from the use of this software either directly on 
  46.            indirectly
  47.  
  48.         4. By using this software you are agreeing with these
  49.            conditions. If you DO NOT AGREE then do not use this
  50.            software. Remove it from your drives and throw it in
  51.            the bin!!!
  52.  
  53.     
  54.     -------------------------------------------------------------
  55.     INSTRUCTIONS
  56.     -------------------------------------------------------------
  57.     Use the Drive/Directory boxes to find the MDB file that you 
  58.     want to code. The File List Box will display all the MDB files
  59.     available in the current directory.
  60.  
  61.     Click on you choosen file from the list of files. You should
  62.     now see that the BAS Filename Box has the same file name but
  63.     with the BAS extension (you may change this if you like).
  64.  
  65.     Click on the [GENERATE BAS FILE] button and sit back and wait.
  66.     
  67.     SE DB Coder will take the following objects and convert them
  68.     into executable code.
  69.  
  70.         * TABLES        
  71.         * QUERIES        
  72.         * INDEXES
  73.         * RELATIONSHIPS
  74.     
  75.     The generated bas file is created in the same directory as the
  76.     SE DB Coder program. Copy it to your VB5 project directory and 
  77.     add it to your project.
  78.  
  79.     To Recreate the MDB file from your application simply call the
  80.     'CreateDB' subroutine your choosen Path & Filename.
  81.  
  82.     Example
  83.     -------
  84.  
  85.     Sub Command1_Click()
  86.  
  87.         CreateDB ("C:\MyDB.Mdb")
  88.  
  89.     End Sub
  90.  
  91.  
  92.     You can paste the above code directly in to your project if you
  93.     want to test the process.
  94.  
  95.     If you recieve an error it is probably due to the fact that you
  96.     have specified the 'Microsoft DAO 3.5 Object Lib' in the project
  97.     references (under the project menu of the menu bar!).
  98.  
  99.     You should note that only the MDB structure is coverted into 
  100.     code. The contents of the tables(records) ARE NOT CONVERTED
  101.  
  102.     -------------------------------------------------------------
  103.     SUPPORT & FEEDBACK
  104.     -------------------------------------------------------------
  105.  
  106.     Limited support is available by email. Send you questions or
  107.     ideas to the following email address:-
  108.  
  109.         support@davidwelch.force9.net
  110.  
  111.     Please remember to tell me WHICH PROGRAM you want support on
  112.     (I've written a few you know) and the version number of the
  113.     program found on the Caption Bar when you run SE DB Coder.    
  114.  
  115.     If enough users send me an email then I will continue to 
  116.     improve and develop the program and incorporate any ideas that
  117.     you care to suggest.
  118.     
  119.     I have only tested the generated code with VB5 and the program
  120.     on Access97 databases. If you find it works with other versions
  121.     of each then please email me (address above) to let me know.
  122.  
  123.  
  124.  
  125.     David Welch
  126.  
  127.  
  128.  
  129.  
  130.     
  131.  
  132.  
  133.  
  134.  
  135.